home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / dev / ASM-Src / NewStartup / Sample_header.s < prev    next >
Text File  |  1996-06-06  |  1KB  |  51 lines

  1. *»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»*
  2. *
  3. *   Name
  4. *    Sample header 1.4
  5. *
  6. *   Synopsis
  7. *    
  8. *   Function
  9. *    
  10. *   Inputs
  11. *    
  12. *   Result
  13. *    
  14. *   Notes
  15. *    
  16. *   Bugs
  17. *    
  18. *   Created    : 04.09.95
  19. *   Last change    : 06.06.96
  20. *»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»*
  21.  
  22. *## For the Startup.asm:
  23.  
  24. StartSkip    =    1        ;0=WB/CLI, 1=CLI only (from AsmOne)
  25. Processor    =    0        ;0/680x0/0x0/x0
  26. MathProc    =    0        ;0/68881/68882/68040/68060
  27.  
  28. *## Default includes:
  29.  
  30.     Incdir    inc:
  31.     Include    Startup.asm
  32.  
  33.     dc.b    "$VER: name v.r (date) "
  34.     dc.b    "Copyright © 1996 by MyName. All rights reserved. "
  35.  
  36. ;delete lines which doesn't fit:
  37.  
  38.     dc.b    "This program is freeware.",0
  39.     dc.b    "This program is shareware.",0
  40.     dc.b    "This program is private!",0
  41.     dc.b    "This program is commercial.",0
  42.     even
  43. *»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»*
  44. Init    TaskName    "<My Task>"    ;from Barfly/Devpac
  45.     TaskName    "My Task"    ;from AsmOne
  46.     DefEnd
  47.  
  48. Start
  49. *·············································································*
  50. Close    Return    0
  51.